home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / gui / gtldv374.lha / GadUtil / Docs / AutoDocs / 22.GU_RefreshWindow < prev    next >
Text File  |  1996-05-14  |  1KB  |  32 lines

  1. gadutil.library/GU_RefreshWindow             gadutil.library/GU_RefreshWindow
  2.  
  3.    NAME
  4.     GU_RefreshWindow -- Redraw bevel boxes and gadgets in a window.
  5.  
  6.    SYNOPSIS
  7.     GU_RefreshWindow(window, gad_info)
  8.                      A0      A1
  9.  
  10.     VOID GU_RefreshWindow(struct Window *, APTR);
  11.  
  12.    FUNCTION
  13.     Perform the initial refresh of all the GadTools gadgets you have
  14.     created. After you have opened your window, you must call this
  15.     function. Or, if you have opened your window without gadgets,
  16.     you add the gadgets with intuition/AddGList(), refresh them using
  17.     intuition/RefreshGList(), then call this function. You should not
  18.     need this function at other times.
  19.  
  20.     This function differs from the gadtools/GT_RefreshWindow(), in that
  21.     is also renders all bevelbox kind gadgets. If NULL is given in
  22.     gad_info, no boxes will be rendered, and this function will work
  23.     exactly as the GT_RefreshWindow().
  24.  
  25.    INPUTS
  26.     window - pointer to the window containing GadTools gadgets.
  27.  
  28.     gad_info - the value returned from GU_LayoutGadgetsA(), or NULL.
  29.  
  30.    SEE ALSO
  31.     GU_RefreshBoxes(), GU_UpdateProgress()
  32.